home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1993 July / InfoMagic USENET CD-ROM July 1993.ISO / sources / misc / volume24 / gnucalc / part02 < prev    next >
Encoding:
Text File  |  1991-10-28  |  55.5 KB  |  1,700 lines

  1. Newsgroups: comp.sources.misc
  2. From: daveg@synaptics.com (David Gillespie)
  3. Subject:  v24i050:  gnucalc - GNU Emacs Calculator, v2.00, Part02/56
  4. Message-ID: <1991Oct29.040905.6697@sparky.imd.sterling.com>
  5. X-Md4-Signature: e69f6b6331e91b24e1bb9f2f24b27c57
  6. Date: Tue, 29 Oct 1991 04:09:05 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: daveg@synaptics.com (David Gillespie)
  10. Posting-number: Volume 24, Issue 50
  11. Archive-name: gnucalc/part02
  12. Environment: Emacs
  13. Supersedes: gmcalc: Volume 13, Issue 27-45
  14.  
  15. ---- Cut Here and unpack ----
  16. #!/bin/sh
  17. # this is Part.02 (part 2 of a multipart archive)
  18. # do not concatenate these parts, unpack them in order with /bin/sh
  19. # file calc.el continued
  20. #
  21. if test ! -r _shar_seq_.tmp; then
  22.     echo 'Please unpack part 1 first!'
  23.     exit 1
  24. fi
  25. (read Scheck
  26.  if test "$Scheck" != 2; then
  27.     echo Please unpack part "$Scheck" next!
  28.     exit 1
  29.  else
  30.     exit 0
  31.  fi
  32. ) < _shar_seq_.tmp || exit 1
  33. if test ! -f _shar_wnt_.tmp; then
  34.     echo 'x - still skipping calc.el'
  35. else
  36. echo 'x - continuing file calc.el'
  37. sed 's/^X//' << 'SHAR_EOF' >> 'calc.el' &&
  38. X  (put 'inexact-result 'error-message "Calc internal error (inexact-result)")
  39. X  
  40. X  ;; Define "math-overflow" and "math-underflow" as e-lisp error symbols.
  41. X  (put 'math-overflow 'error-conditions '(error math-overflow calc-error))
  42. X  (put 'math-overflow 'error-message "Floating-point overflow occurred")
  43. X  (put 'math-underflow 'error-conditions '(error math-underflow calc-error))
  44. X  (put 'math-underflow 'error-message "Floating-point underflow occurred")
  45. X  
  46. X  (setq calc-version "2.00"
  47. X    calc-version-date "Sat Oct 26 17:36:38 PDT 1991"
  48. X    calc-trail-pointer nil        ; "Current" entry in trail buffer.
  49. X        calc-trail-overlay nil        ; Value of overlay-arrow-string.
  50. X    calc-was-split nil        ; Had multiple windows before Calc.
  51. X        calc-undo-list nil        ; List of previous operations for undo.
  52. X        calc-redo-list nil        ; List of recent undo operations.
  53. X        calc-main-buffer nil        ; Pointer to Calculator buffer.
  54. X    calc-trail-buffer nil        ; Pointer to Calc Trail buffer.
  55. X        calc-why nil            ; Explanations of most recent errors.
  56. X        calc-next-why nil
  57. X    calc-inverse-flag nil
  58. X    calc-hyperbolic-flag nil
  59. X    calc-keep-args-flag nil
  60. X    calc-function-open "("
  61. X    calc-function-close ")"
  62. X    calc-language-output-filter nil
  63. X    calc-language-input-filter nil
  64. X    calc-radix-formatter nil
  65. X        calc-last-kill nil        ; Last number killed in calc-mode.
  66. X        calc-previous-alg-entry nil    ; Previous algebraic entry.
  67. X        calc-dollar-values nil        ; Values to be used for '$'.
  68. X        calc-dollar-used nil        ; Highest order of '$' that occurred.
  69. X    calc-hashes-used nil            ; Highest order of '#' that occurred.
  70. X        calc-quick-prev-results nil    ; Previous results from Quick Calc.
  71. X    calc-said-hello nil        ; Has welcome message been said yet?
  72. X    calc-executing-macro nil    ; Kbd macro executing from "K" key.
  73. X    calc-any-selections nil     ; Nil means no selections present.
  74. X    calc-help-phase 0        ; Count of consecutive "?" keystrokes.
  75. X    calc-full-help-flag nil        ; Executing calc-full-help?
  76. X    calc-refresh-count 0        ; Count of calc-refresh calls.
  77. X    calc-display-dirty nil
  78. X    calc-prepared-composition nil
  79. X    calc-selection-cache-default-entry nil
  80. X    calc-embedded-info nil
  81. X    calc-embedded-active nil
  82. X    calc-standalone-flag nil
  83. X    var-EvalRules nil
  84. X    math-eval-rules-cache-tag t
  85. X    math-radix-explicit-format t
  86. X    math-expr-function-mapping nil
  87. X    math-expr-variable-mapping nil
  88. X    math-read-expr-quotes nil
  89. X    math-working-step nil
  90. X    math-working-step-2 nil
  91. X        var-i '(special-const (math-imaginary 1))
  92. X        var-pi '(special-const (math-pi))
  93. X        var-e '(special-const (math-e))
  94. X    var-phi '(special-const (math-phi))
  95. X        var-gamma '(special-const (math-gamma-const)))
  96. X
  97. X  (mapcar (function (lambda (v) (or (boundp (car v)) (set (car v) (nth 1 v)))))
  98. X      calc-mode-var-list)
  99. X  (mapcar (function (lambda (v) (or (boundp v) (set v nil))))
  100. X      calc-local-var-list)
  101. X
  102. X  (if (boundp 'calc-mode-map)
  103. X      nil
  104. X    (setq calc-mode-map (make-keymap))
  105. X    (suppress-keymap calc-mode-map t)
  106. X    (define-key calc-mode-map "+" 'calc-plus)
  107. X    (define-key calc-mode-map "-" 'calc-minus)
  108. X    (define-key calc-mode-map "*" 'calc-times)
  109. X    (define-key calc-mode-map "/" 'calc-divide)
  110. X    (define-key calc-mode-map "%" 'calc-mod)
  111. X    (define-key calc-mode-map "&" 'calc-inv)
  112. X    (define-key calc-mode-map "^" 'calc-power)
  113. X    (define-key calc-mode-map "e" 'calcDigit-start)
  114. X    (define-key calc-mode-map "i" 'calc-info)
  115. X    (define-key calc-mode-map "n" 'calc-change-sign)
  116. X    (define-key calc-mode-map "q" 'calc-quit)
  117. X    (define-key calc-mode-map "Y" 'nil)
  118. X    (define-key calc-mode-map "Y?" 'calc-shift-Y-prefix-help)
  119. X    (define-key calc-mode-map "?" 'calc-help)
  120. X    (define-key calc-mode-map " " 'calc-enter)
  121. X    (define-key calc-mode-map "'" 'calc-algebraic-entry)
  122. X    (define-key calc-mode-map "$" 'calc-auto-algebraic-entry)
  123. X    (define-key calc-mode-map "\"" 'calc-auto-algebraic-entry)
  124. X    (define-key calc-mode-map "\t" 'calc-roll-down)
  125. X    (define-key calc-mode-map "\M-\t" 'calc-roll-up)
  126. X    (define-key calc-mode-map "\C-m" 'calc-enter)
  127. X    (define-key calc-mode-map "\M-\C-m" 'calc-last-args-stub)
  128. X    (define-key calc-mode-map "\C-j" 'calc-over)
  129. X
  130. X    (mapcar (function
  131. X         (lambda (x)
  132. X           (define-key calc-mode-map (char-to-string x) 'undefined)))
  133. X        "lOW")
  134. X    (mapcar (function
  135. X         (lambda (x)
  136. X           (define-key calc-mode-map (char-to-string x)
  137. X         'calc-missing-key)))
  138. X        (concat "ABCDEFGHIJKLMNPQRSTUVXZabcdfghjkmoprstuvwxyz"
  139. X            ":\\|!()[]<>{},;=~`\C-k\M-k\C-w\M-w\C-y\C-_"))
  140. X    (mapcar (function
  141. X         (lambda (x)
  142. X           (define-key calc-mode-map (char-to-string x) 'calcDigit-start)))
  143. X        "_0123456789.#@")
  144. X
  145. X    (setq calc-digit-map (make-keymap))
  146. X    (let ((i 0))
  147. X      (while (< i 128)
  148. X    (aset calc-digit-map i
  149. X          (if (eq (aref calc-mode-map i) 'undefined)
  150. X          'undefined 'calcDigit-nondigit))
  151. X    (setq i (1+ i))))
  152. X    (mapcar (function
  153. X         (lambda (x)
  154. X           (define-key calc-digit-map (char-to-string x)
  155. X         'calcDigit-key)))
  156. X        "_0123456789.e+-:n#@oh'\"mspM")
  157. X    (mapcar (function
  158. X         (lambda (x)
  159. X           (define-key calc-digit-map (char-to-string x)
  160. X         'calcDigit-letter)))
  161. X        "abcdfgijklqrtuvwxyzABCDEFGHIJKLNOPQRSTUVWXYZ")
  162. X    (define-key calc-digit-map "'" 'calcDigit-algebraic)
  163. X    (define-key calc-digit-map "`" 'calcDigit-edit)
  164. X    (define-key calc-digit-map "\C-g" 'abort-recursive-edit)
  165. X
  166. X    (mapcar (function
  167. X         (lambda (x)
  168. X           (condition-case err
  169. X           (progn
  170. X             (define-key calc-digit-map x 'calcDigit-backspace)
  171. X             (define-key calc-mode-map x 'calc-pop)
  172. X             (define-key calc-mode-map (concat "\e" x)
  173. X               'calc-pop-above))
  174. X         (error nil))))
  175. X        (if calc-scan-for-dels
  176. X        (append (where-is-internal 'delete-backward-char global-map)
  177. X            (where-is-internal 'backward-delete-char global-map)
  178. X            '("\C-d"))
  179. X          '("\177" "\C-d")))
  180. X
  181. X    (setq calc-dispatch-map (make-keymap))
  182. X    (calc-build-dispatch-map calc-dispatch-map)
  183. X    (setq calc-dispatch-meta-map (make-sparse-keymap))
  184. X    (calc-build-dispatch-map calc-dispatch-meta-map)
  185. X    (define-key calc-dispatch-map "\e" calc-dispatch-meta-map))
  186. X
  187. X  (autoload 'calc-extensions "calc-ext")
  188. X  (autoload 'calc-need-macros "calc-macs")
  189. X
  190. ;;;; (Autoloads here)
  191. X  (mapcar (function (lambda (x)
  192. X    (mapcar (function (lambda (func)
  193. X      (autoload func (car x)))) (cdr x))))
  194. X    '(
  195. X
  196. X ("calc-aent" calc-Need-calc-aent calc-alg-digit-entry calc-alg-entry
  197. calc-do-alg-entry calc-do-calc-eval calc-do-quick-calc
  198. math-read-expr-list math-read-exprs math-read-if math-read-token
  199. math-remove-dashes)
  200. X
  201. X ("calc-misc" calc-Need-calc-misc calc-delete-windows-keep
  202. calc-do-handle-whys calc-do-refresh calc-num-prefix-name
  203. calc-record-list calc-record-why calc-report-bug calc-roll-down-stack
  204. calc-roll-up-stack calc-temp-minibuffer-message calcFunc-floor
  205. calcFunc-inv calcFunc-trunc math-concat math-constp math-div2
  206. math-div2-bignum math-do-working math-evenp math-fixnatnump
  207. math-fixnump math-floor math-imod math-ipow math-looks-negp math-mod
  208. math-negp math-posp math-pow math-read-radix-digit math-reject-arg
  209. math-trunc math-zerop)
  210. X
  211. ))
  212. X
  213. X  (mapcar (function (lambda (x)
  214. X    (mapcar (function (lambda (cmd)
  215. X      (autoload cmd (car x) nil t))) (cdr x))))
  216. X    '(
  217. X
  218. X ("calc-aent" calc-algebraic-entry calc-auto-algebraic-entry
  219. calcDigit-algebraic calcDigit-edit)
  220. X
  221. X ("calc-misc" another-calc calc-big-or-small calc-dispatch-help
  222. calc-help calc-info calc-info-summary calc-inv calc-last-args-stub
  223. calc-missing-key calc-mod calc-other-window calc-over calc-pop-above
  224. calc-power calc-roll-down calc-roll-up calc-shift-Y-prefix-help
  225. calc-tutorial calcDigit-letter report-calc-bug)
  226. X
  227. ))
  228. X
  229. )
  230. X
  231. ;;; (require 'calc-macs)
  232. X
  233. (defun calc-build-dispatch-map (map)
  234. X  (mapcar (function
  235. X       (lambda (x)
  236. X         (define-key map (char-to-string (car x)) (cdr x))
  237. X         (define-key map (char-to-string (- (car x) ?a -1)) (cdr x))))
  238. X      '( ( ?a . calc-embedded-activate )
  239. X         ( ?b . calc-big-or-small )
  240. X         ( ?c . calc )
  241. X         ( ?d . calc-embedded-duplicate )
  242. X         ( ?e . calc-embedded )
  243. X         ( ?f . calc-embedded-new-formula )
  244. X         ( ?h . calc-dispatch-help )
  245. X         ( ?i . calc-info )
  246. X         ( ?j . calc-embedded-select )
  247. X         ( ?k . calc-keypad )
  248. X         ( ?l . calc-load-everything )
  249. X         ( ?n . calc-embedded-next )
  250. X         ( ?o . calc-other-window )
  251. X         ( ?p . calc-embedded-previous )
  252. X         ( ?q . quick-calc )
  253. X         ( ?r . calc-grab-rectangle )
  254. X         ( ?s . calc-info-summary )
  255. X         ( ?t . calc-tutorial )
  256. X         ( ?u . calc-embedded-update-formula )
  257. X         ( ?w . calc-embedded-word )
  258. X         ( ?x . calc-quit )
  259. X         ( ?y . calc-copy-to-buffer )
  260. X         ( ?z . calc-user-invocation ) ))
  261. X  (define-key map "g" 'calc-grab-region)  ; but not C-g!
  262. X  (define-key map "m" 'read-kbd-macro)
  263. X  (define-key map "=" 'calc-embedded-update-formula)
  264. X  (define-key map "'" 'calc-embedded-new-formula)
  265. X  (define-key map "`" 'calc-embedded-edit)
  266. X  (define-key map ":" 'calc-grab-sum-down)
  267. X  (define-key map "_" 'calc-grab-sum-across)
  268. X  (define-key map "0" 'calc-reset)
  269. X  (define-key map "#" 'calc-same-interface)
  270. X  (define-key map "?" 'calc-dispatch-help)
  271. )
  272. X
  273. (calc-init-base)
  274. X
  275. X
  276. ;;;###autoload (global-set-key "\e#" 'calc-dispatch)
  277. X
  278. ;;;###autoload
  279. (defun calc-dispatch (&optional arg)
  280. X  "Invoke the GNU Emacs Calculator.  See calc-dispatch-help for details."
  281. X  (interactive "P")
  282. X  (sit-for echo-keystrokes)
  283. X  (condition-case err   ; look for other keys bound to calc-dispatch
  284. X      (let ((keys (this-command-keys)))
  285. X    (or (string-match "\\`\C-u\\|\\`\e[-0-9#]\\|`[\M--\M-0-\M-9]" keys)
  286. X        (eq (lookup-key calc-dispatch-map keys) 'calc-same-interface)
  287. X        (progn
  288. X          (and (string-match "\\`[\C-@-\C-_]" keys)
  289. X           (symbolp
  290. X            (lookup-key calc-dispatch-map (substring keys 0 1)))
  291. X           (define-key calc-dispatch-map (substring keys 0 1) nil))
  292. X          (define-key calc-dispatch-map keys 'calc-same-interface))))
  293. X    (error nil))
  294. X  (calc-do-dispatch arg)
  295. )
  296. X
  297. (defun calc-do-dispatch (arg)
  298. X  (let ((key (calc-read-key-sequence
  299. X          (if calc-dispatch-help
  300. X          "Calc options: Calc, Keypad, Quick, Embed; eXit; Info, Tutorial; Grab; ?=more"
  301. X        (format "%s  (Type ? for a list of Calc options)"
  302. X            (key-description (this-command-keys))))
  303. X          calc-dispatch-map)))
  304. X    (setq key (lookup-key calc-dispatch-map key))
  305. X    (message "")
  306. X    (if key
  307. X    (progn
  308. X      (or (commandp key) (calc-extensions))
  309. X      (call-interactively key))
  310. X      (beep)))
  311. )
  312. (setq calc-dispatch-help nil)
  313. X
  314. (defun calc-read-key-sequence (prompt map)
  315. X  (let ((prompt2 (format "%s " (key-description (this-command-keys))))
  316. X    (glob (current-global-map))
  317. X    (loc (current-local-map)))
  318. X    (or (input-pending-p) (message prompt))
  319. X    (setq unread-command-char (read-char))
  320. X    (unwind-protect
  321. X    (progn
  322. X      (use-global-map map)
  323. X      (use-local-map nil)
  324. X      (read-key-sequence
  325. X       (if (commandp (key-binding (char-to-string unread-command-char)))
  326. X           "" prompt2)))
  327. X      (use-global-map glob)
  328. X      (use-local-map loc)))
  329. )
  330. X
  331. X
  332. X
  333. (defun calc-mode ()
  334. X  "Calculator major mode.
  335. X
  336. This is an RPN calculator featuring arbitrary-precision integer, rational,
  337. floating-point, complex, matrix, and symbolic arithmetic.
  338. X
  339. RPN calculation:  2 RET 3 +    produces 5.
  340. Algebraic style:  ' 2+3 RET    produces 5.
  341. X
  342. Basic operators are +, -, *, /, ^, & (reciprocal), % (modulo), n (change-sign).
  343. X
  344. Press ? repeatedly for more complete help.  Press `h i' to read the
  345. Calc manual on-line, `h s' to read the summary, or `h t' for the tutorial.
  346. X
  347. Notations:  3.14e6     3.14 * 10^6
  348. X            _23        negative number -23 (or type `23 n')
  349. X            17:3       the fraction 17/3
  350. X            5:2:3      the fraction 5 and 2/3
  351. X            16#12C     the integer 12C base 16 = 300 base 10
  352. X            8#177:100  the fraction 177:100 base 8 = 127:64 base 10
  353. X            (2, 4)     complex number 2 + 4i
  354. X            (2; 4)     polar complex number (r; theta)
  355. X            [1, 2, 3]  vector  ([[1, 2], [3, 4]] is a matrix)
  356. X            [1 .. 4)   semi-open interval, 1 <= x < 4
  357. X            2 +/- 3    (p key) number with mean 2, standard deviation 3
  358. X            2 mod 3    (M key) number 2 computed modulo 3
  359. X        <1 jan 91> Date form (enter using ' key)
  360. X
  361. X
  362. \\{calc-mode-map}
  363. "
  364. X  (interactive)
  365. X  (mapcar (function
  366. X       (lambda (v) (set-default v (symbol-value v)))) calc-local-var-list)
  367. X  (kill-all-local-variables)
  368. X  (use-local-map (if (eq calc-algebraic-mode 'total)
  369. X             (progn (calc-extensions) calc-alg-map) calc-mode-map))
  370. X  (mapcar (function (lambda (v) (make-local-variable v))) calc-local-var-list)
  371. X  (make-local-variable 'overlay-arrow-position)
  372. X  (make-local-variable 'overlay-arrow-string)
  373. X  (setq truncate-lines t)
  374. X  (setq buffer-read-only t)
  375. X  (setq major-mode 'calc-mode)
  376. X  (setq mode-name "Calculator")
  377. X  (setq calc-stack-top (length (or (memq (assq 'top-of-stack calc-stack)
  378. X                     calc-stack)
  379. X                   (setq calc-stack (list (list 'top-of-stack
  380. X                                1 nil))))))
  381. X  (setq calc-stack-top (- (length calc-stack) calc-stack-top -1))
  382. X  (or calc-loaded-settings-file
  383. X      (string-match "\\.emacs" calc-settings-file)
  384. X      (progn
  385. X    (setq calc-loaded-settings-file t)
  386. X    (load calc-settings-file t)))   ; t = missing-ok
  387. X  (if (and (eq window-system 'x) (fboundp 'x-paste-text))
  388. X      (substitute-key-definition 'x-paste-text 'calc-x-paste-text
  389. X                 mouse-map))
  390. X  (let ((p command-line-args))
  391. X    (while p
  392. X      (and (equal (car p) "-f")
  393. X       (string-match "calc" (nth 1 p))
  394. X       (string-match "full" (nth 1 p))
  395. X       (setq calc-standalone-flag t))
  396. X      (setq p (cdr p))))
  397. X  (run-hooks 'calc-mode-hook)
  398. X  (calc-refresh t)
  399. X  (calc-set-mode-line)
  400. X  ;; The calc-defs variable is a relic.  Use calc-define properties instead.
  401. X  (if (and (boundp 'calc-defs)
  402. X       calc-defs)
  403. X      (progn
  404. X    (message "Evaluating calc-defs...")
  405. X    (calc-need-macros)
  406. X    (eval (cons 'progn calc-defs))
  407. X    (setq calc-defs nil)
  408. X    (calc-set-mode-line)))
  409. X  (calc-check-defines)
  410. )
  411. X
  412. (defun calc-check-defines ()
  413. X  (if (symbol-plist 'calc-define)
  414. X      (let ((plist (copy-sequence (symbol-plist 'calc-define))))
  415. X    (while (and plist (null (nth 1 plist)))
  416. X      (setq plist (cdr (cdr plist))))
  417. X    (if plist
  418. X        (save-excursion
  419. X          (calc-extensions)
  420. X          (calc-need-macros)
  421. X          (set-buffer "*Calculator*")
  422. X          (while plist
  423. X        (put 'calc-define (car plist) nil)
  424. X        (eval (nth 1 plist))
  425. X        (setq plist (cdr (cdr plist))))
  426. X          ;; See if this has added any more calc-define properties.
  427. X          (calc-check-defines))
  428. X      (setplist 'calc-define nil))))
  429. )
  430. (setq calc-check-defines 'calc-check-defines)  ; suitable for run-hooks
  431. X
  432. (defun calc-trail-mode (&optional buf)
  433. X  "Calc Trail mode.
  434. This mode is used by the *Calc Trail* buffer, which records all results
  435. obtained by the GNU Emacs Calculator.
  436. X
  437. Calculator commands beginning with the `t' key are used to manipulate
  438. the Trail.
  439. X
  440. This buffer uses the same key map as the *Calculator* buffer; calculator
  441. commands given here will actually operate on the *Calculator* stack."
  442. X  (interactive)
  443. X  (fundamental-mode)
  444. X  (use-local-map calc-mode-map)
  445. X  (setq major-mode 'calc-trail-mode)
  446. X  (setq mode-name "Calc Trail")
  447. X  (setq truncate-lines t)
  448. X  (setq buffer-read-only t)
  449. X  (make-local-variable 'overlay-arrow-position)
  450. X  (make-local-variable 'overlay-arrow-string)
  451. X  (if buf
  452. X      (progn
  453. X    (make-local-variable 'calc-main-buffer)
  454. X    (setq calc-main-buffer buf)))
  455. X  (if (= (buffer-size) 0)
  456. X      (let ((buffer-read-only nil))
  457. X    (insert "Emacs Calculator v" calc-version " by Dave Gillespie, "
  458. X        "installed " calc-installed-date "\n")))
  459. X  (run-hooks 'calc-trail-mode-hook)
  460. )
  461. X
  462. (defun calc-create-buffer ()
  463. X  (set-buffer (get-buffer-create "*Calculator*"))
  464. X  (or (eq major-mode 'calc-mode)
  465. X      (calc-mode))
  466. X  (setq max-lisp-eval-depth (max max-lisp-eval-depth 1000))
  467. X  (if calc-always-load-extensions
  468. X      (calc-extensions))
  469. X  (if calc-language
  470. X      (progn
  471. X    (calc-extensions)
  472. X    (calc-set-language calc-language calc-language-option t)))
  473. )
  474. X
  475. ;;;###autoload
  476. (defun calc (&optional arg full-display interactive)
  477. X  "The Emacs Calculator.  Full documentation is listed under \"calc-mode\"."
  478. X  (interactive "P")
  479. X  (if arg
  480. X      (or (eq arg 0)
  481. X      (progn
  482. X        (calc-extensions)
  483. X        (if (= (prefix-numeric-value arg) -1)
  484. X        (calc-grab-region (region-beginning) (region-end) nil)
  485. X          (if (= (prefix-numeric-value arg) -2)
  486. X          (calc-keypad)))))
  487. X    (if (get-buffer-window "*Calc Keypad*")
  488. X    (progn
  489. X      (calc-keypad)
  490. X      (set-buffer (window-buffer (selected-window)))))
  491. X    (if (eq major-mode 'calc-mode)
  492. X    (calc-quit)
  493. X      (let ((oldbuf (current-buffer)))
  494. X    (calc-create-buffer)
  495. X    (setq calc-was-keypad-mode nil)
  496. X    (if (or (eq full-display t)
  497. X        (and (null full-display) calc-full-mode))
  498. X        (switch-to-buffer (current-buffer) t)
  499. X      (if (get-buffer-window (current-buffer))
  500. X          (select-window (get-buffer-window (current-buffer)))
  501. X        (setq calc-was-split nil)
  502. X        (if (and (boundp 'calc-window-hook) calc-window-hook)
  503. X        (run-hooks 'calc-window-hook)
  504. X          (let ((w (get-largest-window)))
  505. X        (if (and pop-up-windows
  506. X             (> (window-height w)
  507. X                (+ window-min-height calc-window-height 2)))
  508. X            (progn
  509. X              (or (one-window-p)
  510. X              (setq calc-was-split (list w (window-height w)
  511. X                             (selected-window))))
  512. X              (setq w (split-window w
  513. X                        (- (window-height w)
  514. X                           calc-window-height 2)
  515. X                        nil))
  516. X              (set-window-buffer w (current-buffer))
  517. X              (select-window w))
  518. X          (pop-to-buffer (current-buffer)))))))
  519. X    (save-excursion
  520. X      (set-buffer (calc-trail-buffer))
  521. X      (and calc-display-trail
  522. X           (= (window-width) (screen-width))
  523. X           (calc-trail-display 1 t)))
  524. X    (message "Welcome to the GNU Emacs Calculator!  Press `?' or `h' for help, `q' to quit.")
  525. X    (run-hooks 'calc-start-hook)
  526. X    (and (windowp full-display)
  527. X         (window-point full-display)
  528. X         (select-window full-display))
  529. X    (calc-check-defines)
  530. X    (and calc-said-hello
  531. X         (or (interactive-p) interactive)
  532. X         (progn
  533. X           (sit-for 2)
  534. X           (message "")))
  535. X    (setq calc-said-hello t))))
  536. )
  537. X
  538. ;;;###autoload
  539. (defun full-calc ()
  540. X  "Invoke the Calculator and give it a full-sized window."
  541. X  (interactive)
  542. X  (calc nil t (interactive-p))
  543. )
  544. X
  545. (defun calc-same-interface (arg)
  546. X  "Invoke the Calculator using the most recent interface (calc or calc-keypad)."
  547. X  (interactive "P")
  548. X  (if (and (equal (buffer-name) "*Gnuplot Trail*")
  549. X       (> (recursion-depth) 0))
  550. X      (exit-recursive-edit)
  551. X    (if (eq major-mode 'calc-edit-mode)
  552. X    (calc-edit-finish arg)
  553. X      (if (eq major-mode 'MacEdit-mode)
  554. X      (MacEdit-finish-edit)
  555. X    (if calc-was-keypad-mode
  556. X        (calc-keypad)
  557. X      (calc arg calc-full-mode t)))))
  558. )
  559. X
  560. X
  561. (defun calc-quit (&optional non-fatal)
  562. X  (interactive)
  563. X  (and calc-standalone-flag (not non-fatal)
  564. X       (save-buffers-kill-emacs nil))
  565. X  (if (and (equal (buffer-name) "*Gnuplot Trail*")
  566. X       (> (recursion-depth) 0))
  567. X      (exit-recursive-edit))
  568. X  (if (eq major-mode 'calc-edit-mode)
  569. X      (calc-edit-cancel)
  570. X    (if (eq major-mode 'MacEdit-mode)
  571. X    (MacEdit-cancel-edit)
  572. X      (if (and (interactive-p)
  573. X           calc-embedded-info
  574. X           (eq (current-buffer) (aref calc-embedded-info 0)))
  575. X      (calc-embedded nil)
  576. X    (or (eq major-mode 'calc-mode)
  577. X        (calc-create-buffer))
  578. X    (run-hooks 'calc-end-hook)
  579. X    (setq calc-undo-list nil calc-redo-list nil)
  580. X    (mapcar (function (lambda (v) (set-default v (symbol-value v))))
  581. X        calc-local-var-list)
  582. X    (let ((buf (current-buffer))
  583. X          (win (get-buffer-window (current-buffer)))
  584. X          (kbuf (get-buffer "*Calc Keypad*")))
  585. X      (delete-windows-on (calc-trail-buffer))
  586. X      (if (and win
  587. X           (< (window-height win) (1- (screen-height)))
  588. X           (= (window-width win) (screen-width))  ; avoid calc-keypad
  589. X           (not (get-buffer-window "*Calc Keypad*")))
  590. X          (setq calc-window-height (- (window-height win) 2)))
  591. X      (if calc-was-split
  592. X          (calc-delete-windows-keep buf kbuf)
  593. X        (delete-windows-on buf)
  594. X        (delete-windows-on kbuf))
  595. X      (bury-buffer buf)
  596. X      (bury-buffer calc-trail-buffer)
  597. X      (and kbuf (bury-buffer kbuf))))))
  598. )
  599. X
  600. ;;;###autoload
  601. (defun quick-calc ()
  602. X  "Do a quick calculation in the minibuffer without invoking full Calculator."
  603. X  (interactive)
  604. X  (calc-do-quick-calc)
  605. )
  606. X
  607. ;;;###autoload
  608. (defun calc-eval (str &optional separator &rest args)
  609. X  "Do a quick calculation and return the result as a string.
  610. Return value will either be the formatted result in string form,
  611. or a list containing a character position and an error message in string form."
  612. X  (calc-do-calc-eval str separator args)
  613. )
  614. X
  615. ;;;###autoload
  616. (defun calc-keypad ()
  617. X  "Invoke the Calculator in \"visual keypad\" mode.
  618. This is most useful in the X window system.
  619. In this mode, click on the Calc \"buttons\" using the left mouse button.
  620. Or, position the cursor manually and do M-x calc-keypad-press."
  621. X  (interactive)
  622. X  (calc-extensions)
  623. X  (calc-do-keypad calc-full-mode (interactive-p))
  624. )
  625. X
  626. ;;;###autoload
  627. (defun full-calc-keypad ()
  628. X  "Invoke the Calculator in full-screen \"visual keypad\" mode.
  629. See calc-keypad for details."
  630. X  (interactive)
  631. X  (calc-extensions)
  632. X  (calc-do-keypad t (interactive-p))
  633. )
  634. X
  635. X
  636. ;;; Note that modifications to this function may break calc-pass-errors.
  637. (defun calc-do (do-body &optional do-slow)
  638. X  (calc-check-defines)
  639. X  (let* ((calc-command-flags nil)
  640. X     (calc-start-time (and calc-timing (not calc-start-time)
  641. X                   (calc-extensions)
  642. X                   (current-time-string)))
  643. X     (gc-cons-threshold (max gc-cons-threshold
  644. X                 (if calc-timing 2000000 100000))))
  645. X    (setq calc-aborted-prefix "")
  646. X    (unwind-protect
  647. X    (condition-case err
  648. X        (save-excursion
  649. X          (if calc-embedded-info
  650. X          (calc-embedded-select-buffer)
  651. X        (calc-select-buffer))
  652. X          (and (eq calc-algebraic-mode 'total)
  653. X           (calc-extensions)
  654. X           (use-local-map calc-alg-map))
  655. X          (and do-slow calc-display-working-message
  656. X           (progn
  657. X             (message "Working...")
  658. X             (calc-set-command-flag 'clear-message)))
  659. X          (funcall do-body)
  660. X          (setq calc-aborted-prefix nil)
  661. X          (and (memq 'renum-stack calc-command-flags)
  662. X           (calc-renumber-stack))
  663. X          (and (memq 'clear-message calc-command-flags)
  664. X           (message "")))
  665. X      (error
  666. X       (if (and (eq (car err) 'error)
  667. X            (stringp (nth 1 err))
  668. X            (string-match "max-specpdl-size\\|max-lisp-eval-depth"
  669. X                  (nth 1 err)))
  670. X           (error "Computation got stuck or ran too long.  Type `M' to increase the limit.")
  671. X         (setq calc-aborted-prefix nil)
  672. X         (signal (car err) (cdr err)))))
  673. X      (setq calc-old-aborted-prefix calc-aborted-prefix)
  674. X      (and calc-aborted-prefix
  675. X       (calc-record "<Aborted>" calc-aborted-prefix))
  676. X      (and calc-start-time
  677. X       (let* ((calc-internal-prec 12)
  678. X          (calc-date-format nil)
  679. X          (end-time (current-time-string))
  680. X          (time (if (equal calc-start-time end-time)
  681. X                0
  682. X              (math-sub
  683. X               (calcFunc-unixtime (math-parse-date end-time) 0)
  684. X               (calcFunc-unixtime (math-parse-date calc-start-time)
  685. X                          0)))))
  686. X         (if (math-lessp 1 time)
  687. X         (calc-record time "(t)"))))
  688. X      (or (memq 'no-align calc-command-flags)
  689. X      (eq major-mode 'calc-trail-mode)
  690. X      (calc-align-stack-window))
  691. X      (and (memq 'position-point calc-command-flags)
  692. X       (if (eq major-mode 'calc-mode)
  693. X           (progn
  694. X         (goto-line calc-final-point-line)
  695. X         (move-to-column calc-final-point-column))
  696. X         (save-excursion
  697. X           (calc-select-buffer)
  698. X           (goto-line calc-final-point-line)
  699. X           (move-to-column calc-final-point-column))))
  700. X      (or (memq 'keep-flags calc-command-flags)
  701. X      (save-excursion
  702. X        (calc-select-buffer)
  703. X        (setq calc-inverse-flag nil
  704. X          calc-hyperbolic-flag nil
  705. X          calc-keep-args-flag nil)))
  706. X      (and (memq 'do-edit calc-command-flags)
  707. X       (switch-to-buffer (get-buffer-create "*Calc Edit*")))
  708. X      (calc-set-mode-line)
  709. X      (and calc-embedded-info
  710. X       (calc-embedded-finish-command))))
  711. X  (identity nil)  ; allow a GC after timing is done
  712. )
  713. (setq calc-aborted-prefix nil)
  714. (setq calc-start-time nil)
  715. X
  716. (defun calc-set-command-flag (f)
  717. X  (if (not (memq f calc-command-flags))
  718. X      (setq calc-command-flags (cons f calc-command-flags)))
  719. )
  720. X
  721. (defun calc-select-buffer ()
  722. X  (or (eq major-mode 'calc-mode)
  723. X      (if calc-main-buffer
  724. X      (set-buffer calc-main-buffer)
  725. X    (let ((buf (get-buffer "*Calculator*")))
  726. X      (if buf
  727. X          (set-buffer buf)
  728. X        (error "Calculator buffer not available")))))
  729. )
  730. X
  731. (defun calc-cursor-stack-index (&optional index)
  732. X  (goto-char (point-max))
  733. X  (forward-line (- (calc-substack-height (or index 1))))
  734. )
  735. X
  736. (defun calc-stack-size ()
  737. X  (- (length calc-stack) calc-stack-top)
  738. )
  739. X
  740. (defun calc-substack-height (n)
  741. X  (let ((sum 0)
  742. X    (stack calc-stack))
  743. X    (setq n (+ n calc-stack-top))
  744. X    (while (and (> n 0) stack)
  745. X      (setq sum (+ sum (nth 1 (car stack)))
  746. X        n (1- n)
  747. X        stack (cdr stack)))
  748. X    sum)
  749. )
  750. X
  751. (defun calc-set-mode-line ()
  752. X  (save-excursion
  753. X    (calc-select-buffer)
  754. X    (let* ((fmt (car calc-float-format))
  755. X       (figs (nth 1 calc-float-format))
  756. X       (new-mode-string
  757. X        (format "Calc%s%s: %d %s %-14s"
  758. X            (if calc-embedded-info "Embed" "")
  759. X            (if (and (> (length (buffer-name)) 12)
  760. X                 (equal (substring (buffer-name) 0 12)
  761. X                    "*Calculator*"))
  762. X            (substring (buffer-name) 12)
  763. X              "")
  764. X            calc-internal-prec
  765. X            (capitalize (symbol-name calc-angle-mode))
  766. X            (concat
  767. X
  768. X             ;; Input-related modes
  769. X             (if (eq calc-algebraic-mode 'total) "Alg* "
  770. X               (if calc-algebraic-mode "Alg "
  771. X             (if calc-incomplete-algebraic-mode "Alg[( " "")))
  772. X
  773. X             ;; Computational modes
  774. X             (if calc-symbolic-mode "Symb " "")
  775. X             (cond ((eq calc-matrix-mode 'matrix) "Matrix ")
  776. X               ((integerp calc-matrix-mode)
  777. X                (format "Matrix%d " calc-matrix-mode))
  778. X               ((eq calc-matrix-mode 'scalar) "Scalar ")
  779. X               (t ""))
  780. X             (if (eq calc-complex-mode 'polar) "Polar " "")
  781. X             (if calc-prefer-frac "Frac " "")
  782. X             (cond ((null calc-infinite-mode) "")
  783. X               ((eq calc-infinite-mode 1) "+Inf ")
  784. X               (t "Inf "))
  785. X             (cond ((eq calc-simplify-mode 'none) "NoSimp ")
  786. X               ((eq calc-simplify-mode 'num) "NumSimp ")
  787. X               ((eq calc-simplify-mode 'binary)
  788. X                (format "BinSimp%d " calc-word-size))
  789. X               ((eq calc-simplify-mode 'alg) "AlgSimp ")
  790. X               ((eq calc-simplify-mode 'ext) "ExtSimp ")
  791. X               ((eq calc-simplify-mode 'units) "UnitSimp ")
  792. X               (t ""))
  793. X
  794. X             ;; Display modes
  795. X             (cond ((= calc-number-radix 10) "")
  796. X               ((= calc-number-radix 2) "Bin ")
  797. X               ((= calc-number-radix 8) "Oct ")
  798. X               ((= calc-number-radix 16) "Hex ")
  799. X               (t (format "Radix%d " calc-number-radix)))
  800. X             (if calc-leading-zeros "Zero " "")
  801. X             (cond ((null calc-language) "")
  802. X               ((eq calc-language 'tex) "TeX ")
  803. X               (t (concat
  804. X                   (capitalize (symbol-name calc-language))
  805. X                   " ")))
  806. X             (cond ((eq fmt 'float)
  807. X                (if (zerop figs) "" (format "Norm%d " figs)))
  808. X               ((eq fmt 'fix) (format "Fix%d " figs))
  809. X               ((eq fmt 'sci)
  810. X                (if (zerop figs) "Sci " (format "Sci%d " figs)))
  811. X               ((eq fmt 'eng)
  812. X                (if (zerop figs) "Eng " (format "Eng%d " figs))))
  813. X             (cond ((not calc-display-just)
  814. X                (if calc-display-origin
  815. X                (format "Left%d " calc-display-origin) ""))
  816. X               ((eq calc-display-just 'right)
  817. X                (if calc-display-origin
  818. X                (format "Right%d " calc-display-origin)
  819. X                  "Right "))
  820. X               (t
  821. X                (if calc-display-origin
  822. X                (format "Center%d " calc-display-origin)
  823. X                  "Center ")))
  824. X             (cond ((integerp calc-line-breaking)
  825. X                (format "Wid%d " calc-line-breaking))
  826. X               (calc-line-breaking "")
  827. X               (t "Wide "))
  828. X
  829. X             ;; Miscellaneous other modes/indicators
  830. X             (if calc-assoc-selections "" "Break ")
  831. X             (cond ((eq calc-mode-save-mode 'save) "Save ")
  832. X               ((not calc-embedded-info) "")
  833. X               ((eq calc-mode-save-mode 'local) "Local ")
  834. X               ((eq calc-mode-save-mode 'edit) "LocEdit ")
  835. X               ((eq calc-mode-save-mode 'perm) "LocPerm ")
  836. X               ((eq calc-mode-save-mode 'global) "Global ")
  837. X               (t ""))
  838. X             (if calc-auto-recompute "" "Manual ")
  839. X             (if (and (fboundp 'calc-gnuplot-alive)
  840. X                  (calc-gnuplot-alive)) "Graph " "")
  841. X             (if (and calc-embedded-info
  842. X                  (> (calc-stack-size) 0)
  843. X                  (calc-top 1 'sel)) "Sel " "")
  844. X             (if calc-display-dirty "Dirty " "")
  845. X             (if calc-inverse-flag "Inv " "")
  846. X             (if calc-hyperbolic-flag "Hyp " "")
  847. X             (if calc-keep-args-flag "Keep " "")
  848. X             (if (/= calc-stack-top 1) "Narrow " "")
  849. X             (apply 'concat calc-other-modes)))))
  850. X      (if (equal new-mode-string mode-line-buffer-identification)
  851. X      nil
  852. X    (setq mode-line-buffer-identification new-mode-string)
  853. X    (set-buffer-modified-p (buffer-modified-p))
  854. X    (and calc-embedded-info (calc-embedded-mode-line-change)))))
  855. )
  856. X
  857. (defun calc-align-stack-window ()
  858. X  (if (eq major-mode 'calc-mode)
  859. X      (progn
  860. X    (let ((win (get-buffer-window (current-buffer))))
  861. X      (if win
  862. X          (progn
  863. X        (calc-cursor-stack-index 0)
  864. X        (vertical-motion (- 2 (window-height win)))
  865. X        (set-window-start win (point)))))
  866. X    (calc-cursor-stack-index 0)
  867. X    (if (looking-at " *\\.$")
  868. X        (goto-char (1- (match-end 0)))))
  869. X    (save-excursion
  870. X      (calc-select-buffer)
  871. X      (calc-align-stack-window)))
  872. )
  873. X
  874. (defun calc-check-stack (n)
  875. X  (if (> n (calc-stack-size))
  876. X      (error "Too few elements on stack"))
  877. X  (if (< n 0)
  878. X      (error "Invalid argument"))
  879. )
  880. X
  881. (defun calc-push-list (vals &optional m sels)
  882. X  (while vals
  883. X    (if calc-executing-macro
  884. X    (calc-push-list-in-macro vals m sels)
  885. X      (save-excursion
  886. X    (calc-select-buffer)
  887. X    (let* ((val (car vals))
  888. X           (entry (list val 1 (car sels)))
  889. X           (mm (+ (or m 1) calc-stack-top)))
  890. X      (calc-cursor-stack-index (1- (or m 1)))
  891. X      (if (> mm 1)
  892. X          (setcdr (nthcdr (- mm 2) calc-stack)
  893. X              (cons entry (nthcdr (1- mm) calc-stack)))
  894. X        (setq calc-stack (cons entry calc-stack)))
  895. X      (let ((buffer-read-only nil))
  896. X        (insert (math-format-stack-value entry) "\n"))
  897. X      (calc-record-undo (list 'push mm))
  898. X      (calc-set-command-flag 'renum-stack))))
  899. X    (setq vals (cdr vals)
  900. X      sels (cdr sels)))
  901. )
  902. X
  903. (defun calc-pop-push-list (n vals &optional m sels)
  904. X  (if (and calc-any-selections (null sels))
  905. X      (calc-replace-selections n vals m)
  906. X    (calc-pop-stack n m sels)
  907. X    (calc-push-list vals m sels))
  908. )
  909. X
  910. (defun calc-pop-push-record-list (n prefix vals &optional m sels)
  911. X  (or (and (consp vals)
  912. X       (or (integerp (car vals))
  913. X           (consp (car vals))))
  914. X      (and vals (setq vals (list vals)
  915. X              sels (and sels (list sels)))))
  916. X  (calc-check-stack (+ n (or m 1) -1))
  917. X  (if prefix
  918. X      (if (cdr vals)
  919. X      (calc-record-list vals prefix)
  920. X    (calc-record (car vals) prefix)))
  921. X  (calc-pop-push-list n vals m sels)
  922. )
  923. X
  924. (defun calc-enter-result (n prefix vals &optional m)
  925. X  (setq calc-aborted-prefix prefix)
  926. X  (if (and (consp vals)
  927. X       (or (integerp (car vals))
  928. X           (consp (car vals))))
  929. X      (setq vals (mapcar 'calc-normalize vals))
  930. X    (setq vals (calc-normalize vals)))
  931. X  (or (and (consp vals)
  932. X       (or (integerp (car vals))
  933. X           (consp (car vals))))
  934. X      (setq vals (list vals)))
  935. X  (if (equal vals '((nil)))
  936. X      (setq vals nil))
  937. X  (calc-pop-push-record-list n prefix vals m)
  938. X  (calc-handle-whys)
  939. )
  940. X
  941. (defun calc-normalize (val)
  942. X  (if (memq calc-simplify-mode '(nil none num))
  943. X      (math-normalize val)
  944. X    (calc-extensions)
  945. X    (calc-normalize-fancy val))
  946. )
  947. X
  948. (defun calc-handle-whys ()
  949. X  (if calc-next-why
  950. X      (calc-do-handle-whys))
  951. )
  952. X
  953. X
  954. (defun calc-pop-stack (&optional n m sel-ok)  ; pop N objs at level M of stack.
  955. X  (or n (setq n 1))
  956. X  (or m (setq m 1))
  957. X  (or calc-keep-args-flag
  958. X      (let ((mm (+ m calc-stack-top)))
  959. X    (if (and calc-any-selections (not sel-ok)
  960. X         (calc-top-selected n m))
  961. X        (calc-sel-error))
  962. X    (if calc-executing-macro
  963. X        (calc-pop-stack-in-macro n mm)
  964. X      (calc-record-undo (list 'pop mm (calc-top-list n m 'full)))
  965. X      (save-excursion
  966. X        (calc-select-buffer)
  967. X        (let ((buffer-read-only nil))
  968. X          (if (> mm 1)
  969. X          (progn
  970. X            (calc-cursor-stack-index (1- m))
  971. X            (let ((bot (point)))
  972. X              (calc-cursor-stack-index (+ n m -1))
  973. X              (delete-region (point) bot))
  974. X            (setcdr (nthcdr (- mm 2) calc-stack)
  975. X                (nthcdr (+ n mm -1) calc-stack)))
  976. X        (calc-cursor-stack-index n)
  977. X        (setq calc-stack (nthcdr n calc-stack))
  978. X        (delete-region (point) (point-max))))
  979. X        (calc-set-command-flag 'renum-stack)))))
  980. )
  981. X
  982. (defun calc-get-stack-element (x)
  983. X  (cond ((eq sel-mode 'entry)
  984. X     x)
  985. X    ((eq sel-mode 'sel)
  986. X     (nth 2 x))
  987. X    ((or (null (nth 2 x))
  988. X         (eq sel-mode 'full)
  989. X         (not calc-use-selections))
  990. X     (car x))
  991. X    (sel-mode
  992. X     (calc-sel-error))
  993. X    (t (nth 2 x)))
  994. )
  995. X
  996. ;; Get the Nth element of the stack (N=1 is the top element).
  997. (defun calc-top (&optional n sel-mode)
  998. X  (or n (setq n 1))
  999. X  (calc-check-stack n)
  1000. X  (calc-get-stack-element (nth (+ n calc-stack-top -1) calc-stack))
  1001. )
  1002. X
  1003. (defun calc-top-n (&optional n sel-mode)    ; in case precision has changed
  1004. X  (math-check-complete (calc-normalize (calc-top n sel-mode)))
  1005. )
  1006. X
  1007. (defun calc-top-list (&optional n m sel-mode)
  1008. X  (or n (setq n 1))
  1009. X  (or m (setq m 1))
  1010. X  (calc-check-stack (+ n m -1))
  1011. X  (and (> n 0)
  1012. X       (let ((top (copy-sequence (nthcdr (+ m calc-stack-top -1)
  1013. X                     calc-stack))))
  1014. X     (setcdr (nthcdr (1- n) top) nil)
  1015. X     (nreverse (mapcar 'calc-get-stack-element top))))
  1016. )
  1017. X
  1018. (defun calc-top-list-n (&optional n m sel-mode)
  1019. X  (mapcar 'math-check-complete
  1020. X      (mapcar 'calc-normalize (calc-top-list n m sel-mode)))
  1021. )
  1022. X
  1023. X
  1024. (defun calc-renumber-stack ()
  1025. X  (if calc-line-numbering
  1026. X      (save-excursion
  1027. X    (calc-cursor-stack-index 0)
  1028. X    (let ((lnum 1)
  1029. X          (buffer-read-only nil)
  1030. X          (stack (nthcdr calc-stack-top calc-stack)))
  1031. X      (if (re-search-forward "^[0-9]+[:*]" nil t)
  1032. X          (progn
  1033. X        (beginning-of-line)
  1034. X        (while (re-search-forward "^[0-9]+[:*]" nil t)
  1035. X          (let ((buffer-read-only nil))
  1036. X            (beginning-of-line)
  1037. X            (delete-char 4)
  1038. X            (insert "    ")))
  1039. X        (calc-cursor-stack-index 0)))
  1040. X      (while (re-search-backward "^[0-9]+[:*]" nil t)
  1041. X        (delete-char 4)
  1042. X        (if (> lnum 999)
  1043. X        (insert (format "%03d%s" (% lnum 1000)
  1044. X                (if (and (nth 2 (car stack))
  1045. X                     calc-use-selections) "*" ":")))
  1046. X          (let ((prefix (int-to-string lnum)))
  1047. X        (insert prefix (if (and (nth 2 (car stack))
  1048. X                    calc-use-selections) "*" ":")
  1049. X            (make-string (- 3 (length prefix)) 32))))
  1050. X        (beginning-of-line)
  1051. X        (setq lnum (1+ lnum)
  1052. X          stack (cdr stack))))))
  1053. X  (and calc-embedded-info (calc-embedded-stack-change))
  1054. )
  1055. X
  1056. (defun calc-refresh (&optional align)
  1057. X  (interactive)
  1058. X  (and (eq major-mode 'calc-mode)
  1059. X       (not calc-executing-macro)
  1060. X       (let ((buffer-read-only nil)
  1061. X         (save-point (point))
  1062. X         (save-mark (mark))
  1063. X         (save-aligned (looking-at "\\.$"))
  1064. X         (thing calc-stack))
  1065. X     (setq calc-any-selections nil
  1066. X           calc-any-evaltos nil)
  1067. X     (erase-buffer)
  1068. X     (insert "--- Emacs Calculator Mode ---\n")
  1069. X     (while thing
  1070. X       (goto-char (point-min))
  1071. X       (forward-line 1)
  1072. X       (insert (math-format-stack-value (car thing)) "\n")
  1073. X       (setq thing (cdr thing)))
  1074. X     (calc-renumber-stack)
  1075. X     (if calc-display-dirty
  1076. X         (calc-wrapper (setq calc-display-dirty nil)))
  1077. X     (and calc-any-evaltos calc-auto-recompute
  1078. X          (calc-wrapper (calc-refresh-evaltos)))
  1079. X     (if (or align save-aligned)
  1080. X         (calc-align-stack-window)
  1081. X       (goto-char save-point))
  1082. X     (set-mark save-mark)))
  1083. X  (and calc-embedded-info (not (eq major-mode 'calc-mode))
  1084. X       (save-excursion
  1085. X     (set-buffer (aref calc-embedded-info 1))
  1086. X     (calc-refresh align)))
  1087. X  (setq calc-refresh-count (1+ calc-refresh-count))
  1088. )
  1089. X
  1090. X
  1091. (defun calc-x-paste-text (arg)
  1092. X  "Move point to mouse position and insert window system cut buffer contents.
  1093. If mouse is pressed in Calc window, push cut buffer contents onto the stack."
  1094. X  (x-mouse-select arg)
  1095. X  (if (memq major-mode '(calc-mode calc-trail-mode))
  1096. X      (progn
  1097. X    (calc-wrapper
  1098. X     (calc-extensions)
  1099. X     (let* ((buf (x-get-cut-buffer))
  1100. X        (val (math-read-exprs (calc-clean-newlines buf))))
  1101. X       (if (eq (car-safe val) 'error)
  1102. X           (progn
  1103. X         (setq val (math-read-exprs buf))
  1104. X         (if (eq (car-safe val) 'error)
  1105. X             (error "%s in yanked data" (nth 2 val)))))
  1106. X       (calc-enter-result 0 "Xynk" val))))
  1107. X    (x-paste-text arg))
  1108. )
  1109. X
  1110. X
  1111. X
  1112. ;;;; The Calc Trail buffer.
  1113. X
  1114. (defun calc-check-trail-aligned ()
  1115. X  (save-excursion
  1116. X    (let ((win (get-buffer-window (current-buffer))))
  1117. X      (and win
  1118. X       (pos-visible-in-window-p (1- (point-max)) win))))
  1119. )
  1120. X
  1121. (defun calc-trail-buffer ()
  1122. X  (and (or (null calc-trail-buffer)
  1123. X       (null (buffer-name calc-trail-buffer)))
  1124. X       (save-excursion
  1125. X     (setq calc-trail-buffer (get-buffer-create "*Calc Trail*"))
  1126. X     (let ((buf (or (and (not (eq major-mode 'calc-mode))
  1127. X                 (get-buffer "*Calculator*"))
  1128. X            (current-buffer))))
  1129. X       (set-buffer calc-trail-buffer)
  1130. X       (or (eq major-mode 'calc-trail-mode)
  1131. X           (calc-trail-mode buf)))))
  1132. X  (or (and calc-trail-pointer
  1133. X       (eq (marker-buffer calc-trail-pointer) calc-trail-buffer))
  1134. X      (save-excursion
  1135. X    (set-buffer calc-trail-buffer)
  1136. X    (goto-line 2)
  1137. X    (setq calc-trail-pointer (point-marker))))
  1138. X  calc-trail-buffer
  1139. )
  1140. X
  1141. (defun calc-record (val &optional prefix)
  1142. X  (setq calc-aborted-prefix nil)
  1143. X  (or calc-executing-macro
  1144. X      (let* ((mainbuf (current-buffer))
  1145. X         (buf (calc-trail-buffer))
  1146. X         (calc-display-raw nil)
  1147. X         (calc-can-abbrev-vectors t)
  1148. X         (fval (if val
  1149. X               (if (stringp val)
  1150. X               val
  1151. X             (math-showing-full-precision
  1152. X              (math-format-flat-expr val 0)))
  1153. X             "")))
  1154. X    (save-excursion
  1155. X      (set-buffer buf)
  1156. X      (let ((aligned (calc-check-trail-aligned))
  1157. X        (buffer-read-only nil))
  1158. X        (goto-char (point-max))
  1159. X        (cond ((null prefix) (insert "     "))
  1160. X          ((and (> (length prefix) 4)
  1161. X            (string-match " " prefix 4))
  1162. X           (insert (substring prefix 0 4) " "))
  1163. X          (t (insert (format "%4s " prefix))))
  1164. X        (insert fval "\n")
  1165. X        (let ((win (get-buffer-window buf)))
  1166. X          (if (and aligned win (not (memq 'hold-trail calc-command-flags)))
  1167. X          (calc-trail-here))
  1168. X          (goto-char (1- (point-max))))))))
  1169. X  val
  1170. )
  1171. X
  1172. X
  1173. (defun calc-trail-display (flag &optional no-refresh)
  1174. X  (interactive "P")
  1175. X  (let ((win (get-buffer-window (calc-trail-buffer))))
  1176. X    (if (setq calc-display-trail
  1177. X          (not (if flag (memq flag '(nil 0)) win)))
  1178. X    (if (null win)
  1179. X        (progn
  1180. X          (if (and (boundp 'calc-trail-window-hook) calc-trail-window-hook)
  1181. X          (run-hooks 'calc-trail-window-hook)
  1182. X        (let ((w (split-window nil (/ (* (window-width) 2) 3) t)))
  1183. X          (set-window-buffer w calc-trail-buffer)))
  1184. X          (calc-wrapper
  1185. X           (setq overlay-arrow-string calc-trail-overlay
  1186. X             overlay-arrow-position calc-trail-pointer)
  1187. X           (or no-refresh
  1188. X           (if (interactive-p)
  1189. X               (calc-do-refresh)
  1190. X             (calc-refresh))))))
  1191. X      (if win
  1192. X      (progn
  1193. X        (delete-window win)
  1194. X        (calc-wrapper
  1195. X         (or no-refresh
  1196. X         (if (interactive-p)
  1197. X             (calc-do-refresh)
  1198. X           (calc-refresh))))))))
  1199. X  calc-trail-buffer
  1200. )
  1201. X
  1202. (defun calc-trail-here ()
  1203. X  (interactive)
  1204. X  (if (eq major-mode 'calc-trail-mode)
  1205. X      (progn
  1206. X    (beginning-of-line)
  1207. X    (if (bobp)
  1208. X        (forward-line 1)
  1209. X      (if (eobp)
  1210. X          (forward-line -1)))
  1211. X    (if (or (bobp) (eobp))
  1212. X        (setq overlay-arrow-position nil)   ; trail is empty
  1213. X      (set-marker calc-trail-pointer (point) (current-buffer))
  1214. X      (setq calc-trail-overlay (concat (buffer-substring (point)
  1215. X                                 (+ (point) 4))
  1216. X                       ">")
  1217. X        overlay-arrow-string calc-trail-overlay
  1218. X        overlay-arrow-position calc-trail-pointer)
  1219. X      (forward-char 4)
  1220. X      (let ((win (get-buffer-window (current-buffer))))
  1221. X        (if win
  1222. X        (save-excursion
  1223. X          (forward-line (/ (window-height win) 2))
  1224. X          (forward-line (- 1 (window-height win)))
  1225. X          (set-window-start win (point))
  1226. X          (set-window-point win (+ calc-trail-pointer 4))
  1227. X          (set-buffer calc-main-buffer)
  1228. X          (setq overlay-arrow-string calc-trail-overlay
  1229. X            overlay-arrow-position calc-trail-pointer))))))
  1230. X    (error "Not in Calc Trail buffer"))
  1231. )
  1232. X
  1233. X
  1234. X
  1235. X
  1236. ;;;; The Undo list.
  1237. X
  1238. (defun calc-record-undo (rec)
  1239. X  (or calc-executing-macro
  1240. X      (if (memq 'undo calc-command-flags)
  1241. X      (setq calc-undo-list (cons (cons rec (car calc-undo-list))
  1242. X                     (cdr calc-undo-list)))
  1243. X    (setq calc-undo-list (cons (list rec) calc-undo-list)
  1244. X          calc-redo-list nil)
  1245. X    (calc-set-command-flag 'undo)))
  1246. )
  1247. X
  1248. X
  1249. X
  1250. X
  1251. ;;; Arithmetic commands.
  1252. X
  1253. (defun calc-binary-op (name func arg &optional ident unary func2)
  1254. X  (setq calc-aborted-prefix name)
  1255. X  (if (null arg)
  1256. X      (calc-enter-result 2 name (cons (or func2 func)
  1257. X                      (mapcar 'math-check-complete
  1258. X                          (calc-top-list 2))))
  1259. X    (calc-extensions)
  1260. X    (calc-binary-op-fancy name func arg ident unary))
  1261. )
  1262. X
  1263. (defun calc-unary-op (name func arg &optional func2)
  1264. X  (setq calc-aborted-prefix name)
  1265. X  (if (null arg)
  1266. X      (calc-enter-result 1 name (list (or func2 func)
  1267. X                      (math-check-complete (calc-top 1))))
  1268. X    (calc-extensions)
  1269. X    (calc-unary-op-fancy name func arg))
  1270. )
  1271. X
  1272. X
  1273. (defun calc-plus (arg)
  1274. X  (interactive "P")
  1275. X  (calc-slow-wrapper
  1276. X   (calc-binary-op "+" 'calcFunc-add arg 0 nil '+))
  1277. )
  1278. X
  1279. (defun calc-minus (arg)
  1280. X  (interactive "P")
  1281. X  (calc-slow-wrapper
  1282. X   (calc-binary-op "-" 'calcFunc-sub arg 0 'neg '-))
  1283. )
  1284. X
  1285. (defun calc-times (arg)
  1286. X  (interactive "P")
  1287. X  (calc-slow-wrapper
  1288. X   (calc-binary-op "*" 'calcFunc-mul arg 1 nil '*))
  1289. )
  1290. X
  1291. (defun calc-divide (arg)
  1292. X  (interactive "P")
  1293. X  (calc-slow-wrapper
  1294. X   (calc-binary-op "/" 'calcFunc-div arg 0 'calcFunc-inv '/))
  1295. )
  1296. X
  1297. X
  1298. (defun calc-change-sign (arg)
  1299. X  (interactive "P")
  1300. X  (calc-wrapper
  1301. X   (calc-unary-op "chs" 'neg arg))
  1302. )
  1303. X
  1304. X
  1305. X
  1306. ;;; Stack management commands.
  1307. X
  1308. (defun calc-enter (n)
  1309. X  (interactive "p")
  1310. X  (calc-wrapper
  1311. X   (cond ((< n 0)
  1312. X      (calc-push-list (calc-top-list 1 (- n))))
  1313. X     ((= n 0)
  1314. X      (calc-push-list (calc-top-list (calc-stack-size))))
  1315. X     (t
  1316. X      (calc-push-list (calc-top-list n)))))
  1317. )
  1318. X
  1319. X
  1320. (defun calc-pop (n)
  1321. X  (interactive "P")
  1322. X  (calc-wrapper
  1323. X   (let* ((nn (prefix-numeric-value n))
  1324. X      (top (and (null n) (calc-top 1))))
  1325. X     (cond ((and (null n)
  1326. X         (eq (car-safe top) 'incomplete)
  1327. X         (> (length top) (if (eq (nth 1 top) 'intv) 3 2)))
  1328. X        (calc-pop-push-list 1 (let ((tt (copy-sequence top)))
  1329. X                    (setcdr (nthcdr (- (length tt) 2) tt) nil)
  1330. X                    (list tt))))
  1331. X       ((< nn 0)
  1332. X        (if (and calc-any-selections
  1333. X             (calc-top-selected 1 (- nn)))
  1334. X        (calc-delete-selection (- nn))
  1335. X          (calc-pop-stack 1 (- nn) t)))
  1336. X       ((= nn 0)
  1337. X        (calc-pop-stack (calc-stack-size) 1 t))
  1338. X       (t
  1339. X        (if (and calc-any-selections
  1340. X             (= nn 1)
  1341. X             (calc-top-selected 1 1))
  1342. X        (calc-delete-selection 1)
  1343. X          (calc-pop-stack nn))))))
  1344. )
  1345. X
  1346. X
  1347. X
  1348. X
  1349. ;;;; Reading a number using the minibuffer.
  1350. X
  1351. (defun calcDigit-start ()
  1352. X  (interactive)
  1353. X  (calc-wrapper
  1354. X   (if (or calc-algebraic-mode
  1355. X       (and (> calc-number-radix 14) (eq last-command-char ?e)))
  1356. X       (calc-alg-digit-entry)
  1357. X     (setq unread-command-char last-command-char
  1358. X       calc-aborted-prefix nil)
  1359. X     (let* ((calc-digit-value nil)
  1360. X        (calc-prev-char nil)
  1361. X        (calc-prev-prev-char nil)
  1362. X        (calc-buffer (current-buffer))
  1363. X        (buf (read-from-minibuffer "Calc: " "" calc-digit-map)))
  1364. X       (or calc-digit-value (setq calc-digit-value (math-read-number buf)))
  1365. X       (if (stringp calc-digit-value)
  1366. X       (calc-alg-entry calc-digit-value)
  1367. X     (if calc-digit-value
  1368. X         (calc-push-list (list (calc-record (calc-normalize
  1369. X                         calc-digit-value))))))
  1370. X       (if (eq calc-prev-char 'dots)
  1371. X       (progn
  1372. X         (calc-extensions)
  1373. X         (calc-dots))))))
  1374. )
  1375. X
  1376. (defun calcDigit-nondigit ()
  1377. X  (interactive)
  1378. X  ;; Exercise for the reader:  Figure out why this is a good precaution!
  1379. X  (or (boundp 'calc-buffer)
  1380. X      (use-local-map minibuffer-local-map))
  1381. X  (let ((str (buffer-string)))
  1382. X    (setq calc-digit-value (save-excursion
  1383. X                 (set-buffer calc-buffer)
  1384. X                 (math-read-number str))))
  1385. X  (if (and (null calc-digit-value) (> (buffer-size) 0))
  1386. X      (progn
  1387. X    (beep)
  1388. X    (calc-temp-minibuffer-message " [Bad format]"))
  1389. X    (or (memq last-command-char '(32 13))
  1390. X    (setq prefix-arg current-prefix-arg
  1391. X          unread-command-char last-command-char))
  1392. X    (exit-minibuffer))
  1393. )
  1394. X
  1395. X
  1396. (defun calc-minibuffer-contains (rex)
  1397. X  (save-excursion
  1398. X    (goto-char (point-min))
  1399. X    (looking-at rex))
  1400. )
  1401. X
  1402. (defun calcDigit-key ()
  1403. X  (interactive)
  1404. X  (goto-char (point-max))
  1405. X  (if (or (and (memq last-command-char '(?+ ?-))
  1406. X           (> (buffer-size) 0)
  1407. X           (/= (preceding-char) ?e))
  1408. X      (and (memq last-command-char '(?m ?s))
  1409. X           (not (calc-minibuffer-contains "[-+]?[0-9]+\\.?0*[@oh].*"))
  1410. X           (not (calc-minibuffer-contains "[-+]?\\(1[1-9]\\|[2-9][0-9]\\)#.*"))))
  1411. X      (calcDigit-nondigit)
  1412. X    (if (calc-minibuffer-contains "\\([-+]?\\|.* \\)\\'")
  1413. X    (cond ((memq last-command-char '(?. ?@)) (insert "0"))
  1414. X          ((and (memq last-command-char '(?o ?h ?m))
  1415. X            (not (calc-minibuffer-contains ".*#.*"))) (insert "0"))
  1416. X          ((memq last-command-char '(?: ?e)) (insert "1"))
  1417. X          ((eq last-command-char ?#)
  1418. X           (insert (int-to-string calc-number-radix)))))
  1419. X    (if (and (calc-minibuffer-contains "\\([-+]?[0-9]+#\\|[^:]*:\\)\\'")
  1420. X         (eq last-command-char ?:))
  1421. X    (insert "1"))
  1422. X    (if (and (calc-minibuffer-contains "[-+]?[0-9]+#\\'")
  1423. X         (eq last-command-char ?.))
  1424. X    (insert "0"))
  1425. X    (if (and (calc-minibuffer-contains "[-+]?0*\\([2-9]\\|1[0-4]\\)#\\'")
  1426. X         (eq last-command-char ?e))
  1427. X    (insert "1"))
  1428. X    (if (or (and (memq last-command-char '(?h ?o ?m ?s ?p))
  1429. X         (calc-minibuffer-contains ".*#.*"))
  1430. X        (and (eq last-command-char ?e)
  1431. X         (calc-minibuffer-contains "[-+]?\\(1[5-9]\\|[2-9][0-9]\\)#.*"))
  1432. X        (and (eq last-command-char ?n)
  1433. X         (calc-minibuffer-contains "[-+]?\\(2[4-9]\\|[3-9][0-9]\\)#.*")))
  1434. X    (setq last-command-char (upcase last-command-char)))
  1435. X    (cond
  1436. X     ((memq last-command-char '(?_ ?n))
  1437. X      (goto-char (point-min))
  1438. X      (if (and (search-forward " +/- " nil t)
  1439. X           (not (search-forward "e" nil t)))
  1440. X      (beep)
  1441. X    (and (not (calc-minibuffer-contains "[-+]?\\(1[5-9]\\|[2-9][0-9]\\)#.*"))
  1442. X         (search-forward "e" nil t))
  1443. X    (if (looking-at "+")
  1444. X        (delete-char 1))
  1445. X    (if (looking-at "-")
  1446. X        (delete-char 1)
  1447. X      (insert "-")))
  1448. X      (goto-char (point-max)))
  1449. X     ((eq last-command-char ?p)
  1450. X      (if (or (calc-minibuffer-contains ".*\\+/-.*")
  1451. X          (calc-minibuffer-contains ".*mod.*")
  1452. X          (calc-minibuffer-contains ".*#.*")
  1453. X          (calc-minibuffer-contains ".*[-+e:]\\'"))
  1454. X      (beep)
  1455. X    (if (not (calc-minibuffer-contains ".* \\'"))
  1456. X        (insert " "))
  1457. X    (insert "+/- ")))
  1458. X     ((and (eq last-command-char ?M)
  1459. X       (not (calc-minibuffer-contains
  1460. X         "[-+]?\\(2[3-9]\\|[3-9][0-9]\\)#.*")))
  1461. X      (if (or (calc-minibuffer-contains ".*\\+/-.*")
  1462. X          (calc-minibuffer-contains ".*mod *[^ ]+")
  1463. X          (calc-minibuffer-contains ".*[-+e:]\\'"))
  1464. X      (beep)
  1465. X    (if (calc-minibuffer-contains ".*mod \\'")
  1466. X        (if calc-previous-modulo
  1467. X        (insert (math-format-flat-expr calc-previous-modulo 0))
  1468. X          (beep))
  1469. X      (if (not (calc-minibuffer-contains ".* \\'"))
  1470. X          (insert " "))
  1471. X      (insert "mod "))))
  1472. X     (t
  1473. X      (insert (char-to-string last-command-char))
  1474. X      (if (or (and (calc-minibuffer-contains "[-+]?\\(.*\\+/- *\\|.*mod *\\)?\\([0-9][0-9]?\\)#[0-9a-zA-Z]*\\(:[0-9a-zA-Z]*\\(:[0-9a-zA-Z]*\\)?\\|.[0-9a-zA-Z]*\\(e[-+]?[0-9]*\\)?\\)?\\'")
  1475. X           (let ((radix (string-to-int
  1476. X                 (buffer-substring
  1477. X                  (match-beginning 2) (match-end 2)))))
  1478. X             (and (>= radix 2)
  1479. X              (<= radix 36)
  1480. X              (or (memq last-command-char '(?# ?: ?. ?e ?+ ?-))
  1481. X                  (let ((dig (math-read-radix-digit
  1482. X                      (upcase last-command-char))))
  1483. X                (and dig
  1484. X                     (< dig radix)))))))
  1485. X          (save-excursion
  1486. X        (goto-char (point-min))
  1487. X             (looking-at
  1488. X         "[-+]?\\(.*\\+/- *\\|.*mod *\\)?\\([0-9]+\\.?0*[@oh] *\\)?\\([0-9]+\\.?0*['m] *\\)?[0-9]*\\(\\.?[0-9]*\\(e[-+]?[0-3]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?\\)?\\|[0-9]:\\([0-9]+:\\)?[0-9]*\\)?[\"s]?\\'")))
  1489. X      (if (and (memq last-command-char '(?@ ?o ?h ?\' ?m))
  1490. X           (string-match " " calc-hms-format))
  1491. X          (insert " "))
  1492. X    (if (and (eq this-command last-command)
  1493. X         (eq last-command-char ?.))
  1494. X        (progn
  1495. X          (calc-extensions)
  1496. X          (calc-digit-dots))
  1497. X      (delete-backward-char 1)
  1498. X      (beep)
  1499. X      (calc-temp-minibuffer-message " [Bad format]"))))))
  1500. X  (setq calc-prev-prev-char calc-prev-char
  1501. X    calc-prev-char last-command-char)
  1502. )
  1503. X
  1504. X
  1505. (defun calcDigit-backspace ()
  1506. X  (interactive)
  1507. X  (goto-char (point-max))
  1508. X  (cond ((calc-minibuffer-contains ".* \\+/- \\'")
  1509. X     (backward-delete-char 5))
  1510. X    ((calc-minibuffer-contains ".* mod \\'")
  1511. X     (backward-delete-char 5))
  1512. X    ((calc-minibuffer-contains ".* \\'")
  1513. X     (backward-delete-char 2))
  1514. X    ((eq last-command 'calcDigit-start)
  1515. X     (erase-buffer))
  1516. X    (t (backward-delete-char 1)))
  1517. X  (if (= (buffer-size) 0)
  1518. X      (progn
  1519. X    (setq last-command-char 13)
  1520. X    (calcDigit-nondigit)))
  1521. )
  1522. X
  1523. X
  1524. X
  1525. X
  1526. X
  1527. X
  1528. X
  1529. ;;;; Arithmetic routines.
  1530. ;;;
  1531. ;;; An object as manipulated by one of these routines may take any of the
  1532. ;;; following forms:
  1533. ;;;
  1534. ;;; integer                 An integer.  For normalized numbers, this format
  1535. ;;;                is used only for -999999 ... 999999.
  1536. ;;;
  1537. ;;; (bigpos N0 N1 N2 ...)   A big positive integer, N0 + N1*1000 + N2*10^6 ...
  1538. ;;; (bigneg N0 N1 N2 ...)   A big negative integer, - N0 - N1*1000 ...
  1539. ;;;                Each digit N is in the range 0 ... 999.
  1540. ;;;                Normalized, always at least three N present,
  1541. ;;;                and the most significant N is nonzero.
  1542. ;;;
  1543. ;;; (frac NUM DEN)          A fraction.  NUM and DEN are small or big integers.
  1544. ;;;                         Normalized, DEN > 1.
  1545. ;;;
  1546. ;;; (float NUM EXP)         A floating-point number, NUM * 10^EXP;
  1547. ;;;                         NUM is a small or big integer, EXP is a small int.
  1548. ;;;                Normalized, NUM is not a multiple of 10, and
  1549. ;;;                abs(NUM) < 10^calc-internal-prec.
  1550. ;;;                Normalized zero is stored as (float 0 0).
  1551. ;;;
  1552. ;;; (cplx REAL IMAG)        A complex number; REAL and IMAG are any of above.
  1553. ;;;                Normalized, IMAG is nonzero.
  1554. ;;;
  1555. ;;; (polar R THETA)         Polar complex number.  Normalized, R > 0 and THETA
  1556. ;;;                         is neither zero nor 180 degrees (pi radians).
  1557. ;;;
  1558. ;;; (vec A B C ...)         Vector of objects A, B, C, ...  A matrix is a
  1559. ;;;                         vector of vectors.
  1560. ;;;
  1561. ;;; (hms H M S)             Angle in hours-minutes-seconds form.  All three
  1562. ;;;                         components have the same sign; H and M must be
  1563. ;;;                         numerically integers; M and S are expected to
  1564. ;;;                         lie in the range [0,60).
  1565. ;;;
  1566. ;;; (date N)                A date or date/time object.  N is an integer to
  1567. ;;;                store a date only, or a fraction or float to
  1568. ;;;                store a date and time.
  1569. ;;;
  1570. ;;; (sdev X SIGMA)          Error form, X +/- SIGMA.  When normalized,
  1571. ;;;                         SIGMA > 0.  X is any complex number and SIGMA
  1572. ;;;                is real numbers; or these may be symbolic
  1573. ;;;                         expressions where SIGMA is assumed real.
  1574. ;;;
  1575. ;;; (intv MASK LO HI)       Interval form.  MASK is 0=(), 1=(], 2=[), or 3=[].
  1576. ;;;                         LO and HI are any real numbers, or symbolic
  1577. ;;;                expressions which are assumed real, and LO < HI.
  1578. ;;;                For [LO..HI], if LO = HI normalization produces LO,
  1579. ;;;                and if LO > HI normalization produces [LO..LO).
  1580. ;;;                For other intervals, if LO > HI normalization
  1581. ;;;                sets HI equal to LO.
  1582. ;;;
  1583. ;;; (mod N M)                Number modulo M.  When normalized, 0 <= N < M.
  1584. ;;;                N and M are real numbers.
  1585. ;;;
  1586. ;;; (var V S)            Symbolic variable.  V is a Lisp symbol which
  1587. ;;;                represents the variable's visible name.  S is
  1588. ;;;                the symbol which actually stores the variable's
  1589. ;;;                value:  (var pi var-pi).
  1590. ;;;
  1591. ;;; In general, combining rational numbers in a calculation always produces
  1592. ;;; a rational result, but if either argument is a float, result is a float.
  1593. X
  1594. ;;; In the following comments, [x y z] means result is x, args must be y, z,
  1595. ;;; respectively, where the code letters are:
  1596. ;;;
  1597. ;;;    O  Normalized object (vector or number)
  1598. ;;;    V  Normalized vector
  1599. ;;;    N  Normalized number of any type
  1600. ;;;    N  Normalized complex number
  1601. ;;;    R  Normalized real number (float or rational)
  1602. ;;;    F  Normalized floating-point number
  1603. ;;;    T  Normalized rational number
  1604. ;;;    I  Normalized integer
  1605. ;;;    B  Normalized big integer
  1606. ;;;    S  Normalized small integer
  1607. ;;;    D  Digit (small integer, 0..999)
  1608. ;;;    L  Normalized bignum digit list (without "bigpos" or "bigneg" symbol)
  1609. ;;;       or normalized vector element list (without "vec")
  1610. ;;;    P  Predicate (truth value)
  1611. ;;;    X  Any Lisp object
  1612. ;;;    Z  "nil"
  1613. ;;;
  1614. ;;; Lower-case letters signify possibly un-normalized values.
  1615. ;;; "L.D" means a cons of an L and a D.
  1616. ;;; [N N; n n] means result will be normalized if argument is.
  1617. ;;; Also, [Public] marks routines intended to be called from outside.
  1618. ;;; [This notation has been neglected in many recent routines.]
  1619. X
  1620. ;;; Reduce an object to canonical (normalized) form.  [O o; Z Z] [Public]
  1621. (defun math-normalize (a)
  1622. X  (cond
  1623. X   ((not (consp a))
  1624. X    (if (integerp a)
  1625. X    (if (or (>= a 1000000) (<= a -1000000))
  1626. X        (math-bignum a)
  1627. X      a)
  1628. X      a))
  1629. X   ((eq (car a) 'bigpos)
  1630. X    (if (eq (nth (1- (length a)) a) 0)
  1631. X    (let* ((last (setq a (copy-sequence a))) (digs a))
  1632. X      (while (setq digs (cdr digs))
  1633. X        (or (eq (car digs) 0) (setq last digs)))
  1634. X      (setcdr last nil)))
  1635. X    (if (cdr (cdr (cdr a)))
  1636. X    a
  1637. X      (cond
  1638. X       ((cdr (cdr a)) (+ (nth 1 a) (* (nth 2 a) 1000)))
  1639. X       ((cdr a) (nth 1 a))
  1640. X       (t 0))))
  1641. X   ((eq (car a) 'bigneg)
  1642. X    (if (eq (nth (1- (length a)) a) 0)
  1643. X    (let* ((last (setq a (copy-sequence a))) (digs a))
  1644. X      (while (setq digs (cdr digs))
  1645. X        (or (eq (car digs) 0) (setq last digs)))
  1646. X      (setcdr last nil)))
  1647. X    (if (cdr (cdr (cdr a)))
  1648. X    a
  1649. X      (cond
  1650. X       ((cdr (cdr a)) (- (+ (nth 1 a) (* (nth 2 a) 1000))))
  1651. X       ((cdr a) (- (nth 1 a)))
  1652. X       (t 0))))
  1653. X   ((eq (car a) 'float)
  1654. X    (math-make-float (math-normalize (nth 1 a)) (nth 2 a)))
  1655. X   ((or (memq (car a) '(frac cplx polar hms date mod sdev intv vec var quote
  1656. X                 special-const calcFunc-if calcFunc-lambda
  1657. X                 calcFunc-quote calcFunc-condition
  1658. X                 calcFunc-evalto))
  1659. X    (integerp (car a))
  1660. X    (and (consp (car a)) (not (eq (car (car a)) 'lambda))))
  1661. X    (calc-extensions)
  1662. X    (math-normalize-fancy a))
  1663. X   (t
  1664. X    (or (and calc-simplify-mode
  1665. X         (calc-extensions)
  1666. X         (math-normalize-nonstandard))
  1667. X    (let ((args (mapcar 'math-normalize (cdr a))))
  1668. X      (or (condition-case err
  1669. X          (let ((func (assq (car a) '( ( + . math-add )
  1670. X                           ( - . math-sub )
  1671. X                           ( * . math-mul )
  1672. X                           ( / . math-div )
  1673. X                           ( % . math-mod )
  1674. X                           ( ^ . math-pow )
  1675. X                           ( neg . math-neg )
  1676. X                           ( | . math-concat ) ))))
  1677. X            (or (and var-EvalRules
  1678. X                 (progn
  1679. X                   (or (eq var-EvalRules math-eval-rules-cache-tag)
  1680. X                   (progn
  1681. X                     (calc-extensions)
  1682. X                     (math-recompile-eval-rules)))
  1683. X                   (and (or math-eval-rules-cache-other
  1684. X                    (assq (car a) math-eval-rules-cache))
  1685. X                    (math-apply-rewrites
  1686. X                     (cons (car a) args)
  1687. SHAR_EOF
  1688. true || echo 'restore of calc.el failed'
  1689. fi
  1690. echo 'End of  part 2'
  1691. echo 'File calc.el is continued in part 3'
  1692. echo 3 > _shar_seq_.tmp
  1693. exit 0
  1694. exit 0 # Just in case...
  1695. -- 
  1696. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  1697. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  1698. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  1699. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  1700.